home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / ld / ldmain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  1.3 KB  |  39 lines

  1. /* ldmain.h -
  2.    Copyright 1991, 1992, 1993 Free Software Foundation, Inc.
  3.  
  4.    This file is part of GLD, the Gnu Linker.
  5.  
  6.    GLD is free software; you can redistribute it and/or modify
  7.    it under the terms of the GNU General Public License as published by
  8.    the Free Software Foundation; either version 1, or (at your option)
  9.    any later version.
  10.  
  11.    GLD is distributed in the hope that it will be useful,
  12.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.    GNU General Public License for more details.
  15.  
  16.    You should have received a copy of the GNU General Public License
  17.    along with GLD; see the file COPYING.  If not, write to
  18.    the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  19.  
  20. #ifndef LDMAIN_H
  21. #define LDMAIN_H
  22.  
  23. extern char *program_name;
  24. extern bfd *output_bfd;
  25. extern char *default_target;
  26. extern boolean trace_files;
  27. extern boolean trace_file_tries;
  28. extern boolean version_printed;
  29. extern boolean whole_archive;
  30. extern int g_switch_value;
  31. extern const char *output_filename;
  32. extern struct bfd_link_info link_info;
  33.  
  34. extern void add_ysym PARAMS ((const char *));
  35. extern void add_wrap PARAMS ((const char *));
  36. extern void add_keepsyms_file PARAMS ((const char *filename));
  37.  
  38. #endif
  39.